home *** CD-ROM | disk | FTP | other *** search
- name Mitsubishi H Series EDM
-
- % 00
- / 00
- L >4
- N >4
- G 2
- X ->3.>4
- Y ->3.>4
- Z ->3.>4
- I ->3.>4
- J ->3.>4
- K ->3.>4
- A +->3.>3
- E >3
- P >40
- F >3.1
- H >3
- D >2
- M >2
-
- ModalLetters X Y Z F # List of letters that are modal
-
- ModalGs 0 1 2 3 # List of g codes that are modal
-
- Sequence#s N 1 1 1 # Char, freq, incr & start
- First#? N # Y or N 'Output 1st sequence no.
- Last#? N # Y or N 'Output last sequence no.
-
- HCode X # X or X U 'Horizontal char.
- VCode Y # Y or Y V 'Vertical char.
- Dcode Z # Depth char.
- FeedCode F # Feed rate char.
-
- Comment ( ) # Begin End comment char.
-
- Coolant 8 9 7 # On, Off & Mist m codes
- DComp 41 42 40 # Left, Right & Cancel m codes
-
- Feed G1 # Linear move
- Rapid G0 # Rapid positioning word
- Cw G02 # Circular move clockwise
- Ccw G03 # Circular move counter clockwise
-
- Inc/Abs G 91 90 # Inc & Abs char. & values
-
- Work G # Work offset register
-
- CtrCode I J # I J or R or I J K L
-
- Spaces? Y # Y or N 'Spaces between words
-
- Incremental? N # Y or N 'Inc or abs output
- CtrIncremental? Y # Y or N 'Inc or abs I & J
- ByQuadrants? N # Y or N 'Break arcs at quadrants
-
- UppercaseComments? Y # Y or N 'Require uppercase comments
-
- StartCode # Start of the program
- %0
- L[Program#]
- G90
- G92 X[WorkH] Y[WorkV]
- End
-
- 1stToolChange # First tool change
- E[Tool]
- M80
- M82
- M84
- end
-
- Infeed # Enable cutter comp
- G[Side] X[H] Y[V] F[FRate] H[DComp] M90
- end
-
- Outfeed # Disable cutter comp
- G1 G40 X[H] Y[V] F20.0 M91
- end
-
- ToolChange # Secondary tool changes
- M00
- G90
- G92 X[WorkH] Y[WorkV]
- E[Tool]
- M80
- M82
- M84
- End
-
- EndCode # End of the program
- M02
- %0
- End
-